home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / CSCdy15598.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  88 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. #
  6.  
  7.  
  8. if(description)
  9. {
  10.  script_id(12039);
  11.  script_bugtraq_id(9562);
  12.  
  13.  script_version("$Revision: 1.2 $");
  14.  
  15.  name["english"] = "CSCdy15598 and CSCeb56052";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20.  
  21. The remote router contains a version of IOS which has multiple flaws when
  22. dealing with specially layer 2 packets.
  23.  
  24. CISCO identifies this vulnerability as bug id CSCdy15598 and CSCeb56052
  25.  
  26. An attacker may use this flaw to render this router inoperable
  27.  
  28. Solution : http://www.cisco.com/warp/public/707/cisco-sa-20040203-cat6k.shtml
  29. Risk factor : High
  30.  
  31. *** As Nessus solely relied on the banner of the remote host
  32. *** this might be a false positive
  33. ";
  34.  script_description(english:desc["english"]);
  35.  
  36.  summary["english"] = "Uses SNMP to determine if a flaw is present";
  37.  script_summary(english:summary["english"]);
  38.  
  39.  script_category(ACT_GATHER_INFO);
  40.  
  41.  script_copyright(english:"This script is (C) 2004 Tenable Network Security");
  42.  
  43.  script_family(english:"CISCO");
  44.  
  45.  script_dependencie("snmp_sysDesc.nasl",
  46.              "snmp_cisco_type.nasl");
  47.  script_require_keys("SNMP/community",
  48.               "SNMP/sysDesc",
  49.               "CISCO/model");
  50.  exit(0);
  51. }
  52.  
  53.  
  54. # The code starts here
  55. ok=0;
  56. os = get_kb_item("SNMP/sysDesc"); if(!os)exit(0);
  57. hardware = get_kb_item("CISCO/model"); if(!hardware)exit(0);
  58.  
  59.  
  60.  
  61.  
  62. # Check for the required hardware...
  63. #----------------------------------------------------------------
  64. # catalyst6k.*
  65. if(ereg(string:hardware, pattern:"^catalyst6k.*$"))ok=1;
  66.  
  67. if(!ok)exit(0);
  68. ok = 0;
  69.  
  70.  
  71. # Check for the required operating system...
  72. #----------------------------------------------------------------
  73. # Is this IOS ?
  74. if(!egrep(pattern:".*(Internetwork Operating|IOS).*", string:os))exit(0);
  75. # 12.1E
  76. if(egrep(string:os, pattern:"(12\.1\(([0-9]|1[0-8])\)|12\.1)E[0-9]*,"))ok=1;
  77.  
  78. # 12.2SY
  79. if(egrep(string:os, pattern:"(12\.2\(([0-9]|1[0-3])\)|12\.2)SY[0-9]*,"))ok=1;
  80.  
  81. # 12.2ZA
  82. if(egrep(string:os, pattern:"(12\.2\(([0-9]|1[0-3])\)|12\.2)ZA[0-9]*,"))ok=1;
  83.  
  84.  
  85. #----------------------------------------------
  86.  
  87. if(ok)security_hole(port:161, proto:"udp");
  88.